home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Tele / T / Terminal 1.7.cpt / Terminal scripts / Hangup DTR.s < prev    next >
Text File  |  1989-11-06  |  191b  |  13 lines

  1. /*
  2.     Terminal 1.7
  3.     "Hangup DTR.s"
  4. */
  5.  
  6. main()
  7. {
  8.     setdtr(0);    /* Negate DTR: modem hangs up */
  9.     pause(60);    /* Wait one second */
  10.     setdtr(1);    /* Assert DTR: now back in command mode */
  11.     beep();
  12. }
  13.